* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: #f5f5f7;
    overflow-x: hidden;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 100;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #bcbcbc;
    font-weight: 600;
    transition: 0.3s;
    background: transparent;
    padding: 5PX;
    border-radius: 2px;
}
.nav-links a.active {
    background: rgb(255, 255, 255);
    padding: 5PX;
    border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active {
    color: #000000;
    background: rgb(255, 255, 255);
    padding: 5PX;
    border-radius: 2px;
}

.talk-btn {
    background: linear-gradient(90deg, #e48aff, #b3a3ff);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1d;
}

.menu-icon {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}
/* =SKILLS SECTION= */
.skills-section {
    background-color: transparent;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: 80px;
}

.skills-section h1 {
    color: #00aaff;
    font-size: 32px;
    margin-bottom: 10px;
}

.skills-section p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 15px;
}

/* =SKILL CARDS= */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.skill-card {
    background-color: #0b0f19;
    border-radius: 15px;
    min-width: none;
    width: 260px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

/* Circle Skill */
.circle {
    width: 150px;
    height: 150px;
    background: conic-gradient(#00aaff calc(var(--percent) * 1%), #1a1f2e 0);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: #0b0f19;
    border-radius: 50%;
}

.circle span {
    position: relative;
    font-size: 20px;
    color: #00aaff;
    font-weight: 600;
}

.skill-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Bar Style */
.bar {
    background-color: #1a1f2e;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    background-color: #00aaff;
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}
/* ===== PAGE LOADER ===== */

/* loader container */
#loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background: #0b0b0b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo img{
    width: 150px;
    object-fit: contain;
    margin-bottom: 25px;
}
/* Spinner animation */
.spinner{
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #0095e0;
    border-bottom: 4px solid #0095e0;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    margin-bottom: 15px;
    box-shadow: 0 0 10px #0095e0;
}

@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
/* text under .spinner */
#loader{
    color: #ccc;
    font-size: 14px;
}

/* main content (hidden until loader) */
#content{
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    text-align: center;
    margin-top: 150px;
}

/* fade out animation when page loads */
.loader #loader{
    opacity: 0;
    visibility: hidden;
}
.loader #content{
    opacity: 1;
    visibility: visible;
}
/* =ANIMATION=
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}  */

/* ==  RESPONSIVE DESIGN == */

/* ==FOOTER SECTION== */
footer {
    background: #0e0e10;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 60px 8% 20px;
    border-top: 5px solid rgb(0, 0, 0);
}

.footer-content h3 {
    color: #00aaff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.footer-content p {
    color: #ccc;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 5px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #aaa;
}
/* Tablets */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .sidebar,
    .skills-section {
        width: 100%;
    }

    .skills-container {
        gap: 25px;
    }

    .skill-card {
        width: 200px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle::before {
        width: 85px;
        height: 85px;
    }

    .circle span {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #aaa;
    border-top: 1px solid #2a2a2d;
    margin-top: 50px;
}

/* Phones */
@media (max-width: 480px) {
    .skills-section h1 {
        font-size: 24px;
    }

    .skills-section p {
        font-size: 13px;
    }

    .skills-container {
        flex-direction: column;
        align-items: center;
    }

    .skill-card {
        width: 90%;
    }

    .circle {
        width: 100px;
        height: 100px;
    }

    .circle::before {
        width: 70px;
        height: 70px;
    }

    .circle span {
        font-size: 14px;
    }

    .skill-card h3 {
        font-size: 15px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
    display: none;
    flex-direction: column;
    background: #1a1a1d;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00aaff;
    }

    .menu-icon {
    display: block;
    }

    .hero-section {
    flex-direction: column;
    align-items: center;
    }
}